home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
plnk081.zip
/
pilot-link.0.8.1
/
Java
/
Pdapilot
/
Block.java
< prev
next >
Wrap
Text File
|
1997-08-06
|
557b
|
38 lines
package Pdapilot;
import java.io.*;
/** A representation of a generic database block.
*/
public class Block {
public byte[] raw;
public Block() {
this.fill();
}
public Block(byte[] contents) {
this.unpack(contents);
}
public void fill() {
}
public byte[] pack() {
return raw;
}
public void unpack(byte[] data) {
raw = data;
}
public String describe() {
return "raw='" + Util.prettyPrint(raw);
}
public String toString() {
return "<" + this.getClass().getName() + " " + describe() + ">";
}
}